home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / fax / src / port / svr4 / signal.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  250b  |  22 lines

  1.  
  2. #ifdef __GNUC__
  3. #include_next <signal.h>
  4. #endif
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. #ifndef __GNUC__
  11. #include "/usr/include/signal.h"
  12. #endif
  13.  
  14.     extern void (*sigset(int, void (*)(int)))(int);
  15.  
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19.  
  20. #define signal sigset
  21.  
  22.